home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / Demos / Bombardier_PC / BSCRIPTS.CST / 00053_Script_bombhome < prev    next >
Text File  |  1999-04-25  |  1KB  |  50 lines

  1. -- ⌐ 1998 @radical.media, inc. & Concurrent New Media Group, L.L.C.
  2. -- Developed for Bombardier, Inc.
  3. --
  4. -- All programming developed by: 
  5. -- Robert Fabricant, Valerie Valoueva, Ossi Shaked, 
  6. -- Henry Sauvageot, Chris Howell & Chris Girand
  7. --
  8. -- Use of this code by parties other than @radical.media, inc. or their
  9. --agents 
  10. -- without the express written consent of @radical.media, inc. AND Concurrent 
  11. -- New Media Group, L.L.C. is strictly prohibited.
  12. ------------------------------------------------------
  13. -------*This script is not used in this version of the movie*----------
  14.  
  15. property Rimage,Dimage,image,sprt, origNum, rollNum
  16.  
  17.  
  18. on getPropertyDescriptionList
  19.   set description=[:]
  20.   
  21.   addProp description,#sprt,[#default:"",#format:#integer, ¼
  22.   #comment:"The sprite number "]
  23.   
  24.   return description
  25. end
  26.  
  27. on getbehaviorDescription
  28.   return "changes the image on rollover"
  29. end
  30.  
  31. on mouseenter me
  32.   set the castnum of sprite sprt to the castnum of sprite sprt +1
  33.   updatestage
  34. end
  35.  
  36. on mouseleave me
  37.   --  set the member of sprite the spriteNum of me to member origNum
  38.   set the castnum of sprite sprt to the castnum of sprite sprt -1
  39.   updatestage
  40. end
  41.  
  42. on mouseup
  43.   sound stop(1)
  44.   sound stop(2)
  45.   updatestage
  46.   sound 3,"bombh"
  47.   go to movie "main.dir"
  48.   pass
  49. end
  50.